Adjusting Individual RTP

Adjusting Individual RTP

1) Request URL

URL: {APIURL}/api/v1/player/setRtp

2) Request Parameters

Parameter Name Type Description
UserID string The operator’s unique identifier for the player. For multiple players, use a comma (,) to separate the UserIDs.
RTP int The RTP value to set for the player. Allowed values: 10, 20, 30, 40, 50, 60, 70, 80, 85, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 102, 110, 120
GameId string The ID of the game to be controlled. Use ALL for all games. For multiple games, use a comma (,) to separate the GameIDs.
RemoveRTP int This field is optional. Leaving it blank will not release RTP control. The RTP value at which the control will be removed. When the user’s RTP reaches this value, the RTP control will be removed. Allowed values: 10, 20, 30, 40, 50, 60, 70, 80, 85, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 102, 110, 120
  • Example (Single Player):
    复制复制{
          "UserID": "LpyQnuYP-1732619999024-DemoUser",
          "Rtp": 70,
          "GameId": "pg_100",
          "RemoveRTP": 80
    }
    
  • Example (Multiple Players):
    复制复制{
       "UserID": "WYdKadVj-1732180150061-DemoUser,aPHXsPXM-1732241836229-DemoUser,dPXQlbNp-1732241919276-DemoUser",
       "Rtp": 30,
       "GameId": "pg_100,pg_89",
       "RemoveRTP": 70
    }
    

3) Response

Parameter Name Type Description
Pid []int64 List of unique identifiers for the users.
  • Example:
    复制复制{
      "code": 0,
      "error": "",
      "data": {
          "PidList": [
              102561,
              102562,
              102563
          ]
      }
    }
    

Adjusting Individual RTP

1) Request URL

URL: {APIURL}/api/v1/player/setRtp

2) Request Parameters

Parameter Name Type Description
UserID string The operator’s unique identifier for the player. For multiple players, use a comma (,) to separate the UserIDs.
RTP int The RTP value to set for the player. Allowed values: 10, 20, 30, 40, 50, 60, 70, 80, 85, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 102, 110, 120
GameId string The ID of the game to be controlled. Use ALL for all games. For multiple games, use a comma (,) to separate the GameIDs.
RemoveRTP int This field is optional. Leaving it blank will not release RTP control. The RTP value at which the control will be removed. When the user’s RTP reaches this value, the RTP control will be removed. Allowed values: 10, 20, 30, 40, 50, 60, 70, 80, 85, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 102, 110, 120
  • Example (Single Player):
    复制{
          "UserID": "LpyQnuYP-1732619999024-DemoUser",
          "Rtp": 70,
          "GameId": "pg_100",
          "RemoveRTP": 80
    }
    
  • Example (Multiple Players):
    复制{
       "UserID": "WYdKadVj-1732180150061-DemoUser,aPHXsPXM-1732241836229-DemoUser,dPXQlbNp-1732241919276-DemoUser",
       "Rtp": 30,
       "GameId": "pg_100,pg_89",
       "RemoveRTP": 70
    }
    

3) Response

Parameter Name Type Description
Pid []int64 List of unique identifiers for the users.
  • Example:
    复制{
      "code": 0,
      "error": "",
      "data": {
          "PidList": [
              102561,
              102562,
              102563
          ]
      }
    }